home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-05-27 | 366 b | 27 lines |
-
- # Make file for IDEA package
-
- # Everything will probably work OK without any changes below
- # this line.
-
- # Compiler flags
-
- CC = cc
- CFLAGS = -O
-
- all: idea.a
-
- IDEAOBJS = idea.o
-
- idea.a: $(IDEAOBJS)
- rm -f idea.a
- ar cr idea.a $(IDEAOBJS)
-
- idea: $(IDEAOBJS)
- $(CC) $(IDEAOBJS) -o idea
-
- idea.o: idea.c idea.h
-
- clean:
- rm -f core *.out *.a *.o *.bak idea *.shar
-